|
May 21 |
revised |
Delete Div and get Hidden field value - best approach added 12 characters in body |
|
May 21 |
comment |
Returning Expression<> using various class properties @Jon I think that error message is because it uses a function instead of an expression. I'm not certain, but you might be able to call the expression as if it were a function |
|
May 21 |
comment |
Returning Expression<> using various class properties Does the retrievePropValueFunc need to be an Expression<Func<...>> as well? |
|
May 21 |
comment |
Set a parents parent css using javascript/ knockout @donpisci no problem - don't forget to accept it as the answer if it works for you! |
|
May 21 |
answered | Set a parents parent css using javascript/ knockout |
|
May 14 |
comment |
How can I limit the amount of text in a DIV that I periodically add messages to? You should probably cache your $("p", "#statusMessageDiv") |
|
May 14 |
revised |
Is there a way to convert a DateTimeOffset into minutes since midnight? added 2 characters in body |
|
May 10 |
awarded | Good Answer |
|
May 3 |
answered | Knockout.js: Problems relecting changes to an array element |
|
Apr 29 |
comment |
Cancel call to controller through jQuery If that is the case, you probably want to handle the form's submit instead of the buttons click event |
|
Apr 26 |
comment |
QUnit Test - Knockout observableArray not evaluating properly Could you post the rest of your view model? I'm assuming that you at least have some knockout-validation validations configured... |
|
Apr 25 |
comment |
mobiscroll timepicker function Do you have errors in the console? Perhaps ones that say something like $ is not defined? If so, it means you have omitted the jQuery reference (which looks likely) so you need to add <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script> before the mobiscroll script. |
|
Apr 19 |
comment |
How to populate knockout observable array on initial load of page?ko.mapping does quite a lot, so you might be able to make things quicker by manually iterating the list and manually creating your own view model classes. If you really need all those view models immediately (and I would have thought you could get away with just loading a first page initially) then you'll have to go through the list which is likely to be slow. I would be looking at ways you can do some of the slow parts (iterating the list, creating the view models) after page load |
|
Apr 19 |
comment |
How to populate knockout observable array on initial load of page? Do you need to use ko.mapping? i.e. do you need to have view models created for each reading list item? And do you need to load them all at once or could you page/delay-load them? |
|
Apr 19 |
answered | Knockout how add custom column to table during foreach |
|
Apr 9 |
answered | Knockout mapping and foreach data-bind on table with buttons, missing reference to viewmodel? |
|
Apr 9 |
comment |
Knockout mapping and foreach data-bind on table with buttons, missing reference to viewmodel? Where are you instantiating self.Experiences? |
|
Apr 9 |
comment |
Knockout mapping and foreach data-bind on table with buttons, missing reference to viewmodel? Can you post the code that defines this.Experiences? You almost certainly won't be able to use this. here though - the this object inside your success callback is not the same as it is within your ViewModel function... |
|
Apr 8 |
comment |
DataTables warning on localhost It doesn't sound like this is anything to do with the jquery or the datatables plugin |
|
Apr 4 |
comment |
Using Knockout with repeated user controls Thanks Tyrsius. @Offa - can you accept the answer? |