Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
54 views

I want to use a form to let users rank a list of items and store the ranking in a form field called ranking. I am using "Sortable" to and "toArray" for this: <ul id="items&...
Marco Lambrecht's user avatar
0 votes
0 answers
65 views

I need to get that single date which is underlined in red in the image, and store it into a variable, so I can create a conditional and use it as a param. Through front end it comes dynamically ...
Dev_Edimar FUll stack's user avatar
1 vote
4 answers
26k views

When using the .ToArray() function is it necessary to implicitly define the size of the array in order to hold of the characters that were in the list you're converting? String [] array = List....
user1993843's user avatar
28 votes
7 answers
47k views

This has me stumped. The follow code returns ",,,,,,": <script type="text/javascript"> $(function() { $('#listB').sortable({ connectWith: '#listA', update: function(event, ...
bjork24's user avatar
  • 3,203
1 vote
2 answers
682 views

I have a LinqToSql query that returns an array of Article objects like so: return db.Articles.ToArray(); I then loop over this array and start to delete some items that meet a certain criteria, for ...
Ahmed's user avatar
  • 11.5k