jordan-ware

Results 10 comments of jordan-ware

For those working with SQL Server, in the mean-time you can create an extension method like below: ``` public static void DropTableIfExists(this IExecuteExpressionRoot execute, string tableName) { execute.Sql(string.Format("IF (EXISTS (SELECT...

internally the router is using `encodeURI()` which doesn't properly escape everything: > `encodeURI` escapes all characters except: A-Z a-z 0-9 ; , / ? : @ & = + $...

The `PLATFORM.moduleName("./module", "chunk")` works wonders if your component is navigated to by the router. I have a custom element which I am hoping to achieve a similar outcome. Both approaches...

![example bundle](https://user-images.githubusercontent.com/14194954/29799581-ce1a1692-8ca3-11e7-8ce8-fdea6dae2086.jpg) Here's the example scenario. Note the dotted lines are my current bundle/chunk boundaries. My aim is to have the expensive plugin loaded only when the specific child module...

I think my understanding was still very vague when it came to when modules are loaded. The `CommonChunksPlugin` is pretty much what I wanted. I think the only alternative to...

Yeah, I went with your suggestion and just set the boundary around my child plugin and then did a specific commons chunk for that expensive custom element. I'm guessing this...

I had a project previously where users did not like the combined input on one field, so we separated it out. I think I was using this library and it...

Yeah, I've got a binding `multiselect` which, when true, will give you that mode. Here's a preview, I'm currently fixing selectedValues & selectedObjects listening for changes from the parent component....

I'm starting to feel confident in handling the syncing issue, would be happy to enhance the sync in the datetimepicker when I have the time, maybe as a separate PR....

Hopefully this clears it up a bit. So... ![binding model](https://user-images.githubusercontent.com/14194954/52686674-4faf5000-2f96-11e9-9726-20d5d9ca82b0.png) inputValue would bind to the text box. On update, it will sync with the model, which stores the date object....