Use Client Side Library (JQuery Or ExtJS)
Feb 23, 2010
For a slick UI, I am deciding between using a client side library (JQuery or ExtJS) or go with the AJAX Control toolkit. I understand that the widgets supported by ExtJS rich library does not match what's there in the toolkit. What are the pros of cons of using one over the other?
View 3 Replies
Similar Messages:
Oct 17, 2010
Suppose I'm building a StackOverflow clone using webforms ASP.NET and jQuery. The Question page has a question, several answers, and comments under each. Requirements:Users can post new answers and comments, and edit existing ones, without postbacks. No UpdatePanels; the AJAX calls retrieve just the JSON they need, not HTML fragments. The page loads with all existing answers and comments in place (no javascript needs to run to read the page).
What I'm trying to figure out is how to do this without having to maintain two sets of markup (one that's bound on the client using some form of jQuery templating, and one that's bound on the server using traditional WebForms).
View 7 Replies
Apr 30, 2014
i have a grid as
<asp:GridView ID="dgv_passengerdetails" runat="server" AutoGenerateColumns="False"
CssClass="pasdetailsgrid" BorderStyle="None">
<Columns>
<asp:BoundField HeaderText="Seat No" DataField="seatno">
<ItemStyle HorizontalAlign="Center" />
</asp:BoundField>
[code]...
the string gs=null, if i click the button again then gs takes the value from textbox.
View 1 Replies
Oct 25, 2010
Anyone have any suggestions for 3rd party controls that work entirely client side?By this I mean the following using the example of an invoice:An invoice is a master, with children.I have to be able to select properties on the invoice and add lines to the invoice via a grid to obviously have the customer like my invoice editing window because they don't want to have to enter the basics and then save and then add the line items.In a classic asp.net/mvc.net model the server does the processing. This requires that you either store your data objects in the view state (in this case EF) or you store it in the session.Neither scales worth crap.What I'm looking to do is be able to create an entire form that interacts in javascript using jquery and never posts back to the server to be persistant. It may pull data from the server to update lists and do lookups etc. but it will never have to have the server hold information to be persistant while it's being built (and thus only when the user clicks save will it actually post the data back.In a perfect world what would happen is that the EF object would be converted to javascript and then used and bound, and updated. Once I'm done I'd post back the javascript object and it would be automatically converted to the EF equivalent class which I could then attach and save to the database.By doing this I can eliminate all persistant memory usage and indeed essentially ALL use of the Session or viewstate which would be super powerful.
View 8 Replies
Nov 23, 2010
I have a user control which contains a CustomValidator which is used according to whether a RadioButton is checked or not (there are several RadioButtons, I'm only showing the relevant one)
<asp:RadioButton runat="Server" ID="RadioBetween" GroupName="DateGroup" CssClass="date_group_options_control_radio" />
[code]...
There is some client + server side validation code (the server side code does exactly the same thing and is skipped for brevity)
<script type="text/javascript">
function ValidateDateFields_Client(source, args) [code]...
There are two instances of this control in the page. When running the client side version it hits the wrong one (the version of the control which is disabled). You can see from the generated HTML both are correctly specified. I'm not sure how .NET works out which clientside function to call given they both have the same name.
<script type="text/javascript">
//<![CDATA[
var ctl00_MCPH1_QueryTextValidator = document.all ? document.all["ctl00_MCPH1_QueryTextValidator"] : document.getElementById("ctl00_MCPH1_QueryTextValidator");
[code]...
Do i need to add something in to scope it? What's the best way to achieve this? If I disable the loading of the second control everything works fine.
View 1 Replies
Nov 29, 2010
Clicking 'Edit' for a row expands it (using JQuery) to reveal the full horror of all the associated editable objects. One of these is a list of documents associated with each row and needs to be JQuery-editable so the user could click 'edit' to open up the full row gui, then un/select checkboxes to de/associate documents and then hit 'Save' to persist everything.
Currently I'm using nested repeaters to store the initially-hidden fields - the repeater generates a hidden formfield containing a comma-separated list of IDs for the assoc documents. When it comes to populating the Edit gui I do a split operation on the delimited string and set/unset the checkboxes as required.
This is proving a nightmare from a maintainability perspective and in my frustrated wanderings of the web in search of a solution i noticed JQuery has some functionality to act as a client-side database. Does any one have any experience of this, and if so, would you recommend it? My custom JS to parse csv-strings and dynamically build the gui is starting to grind me down a bit.
View 1 Replies
Feb 15, 2011
Using MVC 3 RTM and MvcContrib/FluentHtml version 3.0.51.0, I can't get the jQuery client side validation to work. Server side validation works fine, and returns showing the correct validation summary, etc. But the form post always tries to hit the server-side post controller action when it should have stopped on the client side to display the validation error.
I tried replacing the MvcContrib ModelViewPage with the default Mvc ViewPage and it still didn't work.
Here's my code:
Web.config has:
[Code]....
Site.Master page has:
[Code]....
View page inherits from MvcContrib's ModelViewPage:Here's the view page:
[Code]....
Here's the controller post action:
[Code]....
Here's the entity object with the Required field:
[Code]....
View 4 Replies
Nov 12, 2010
I'm want to build web site in asp.net(because I know this language) in server side, and js (probably jquery) in client side, with Ajax technology. I heard that ASP.NET AJAX is too slow, if it's true (is it?) - what are the other options (to combine ASP.NET and Ajax) for me? Which tool combine all that technologies?
View 2 Replies
Mar 1, 2011
I am using two listbox for moving items from one to another using jquery. Auto postback is set to false for both the listboxes. Is there a way to access the items server side on postback?
View 3 Replies
Jan 21, 2011
I'm new to Jquery. My page looks something like this:
[Code]....
I got it to work using AJAX Control Toolkit, but I find it a bit cumbersome and rather slow. I want to use JQuery for this one.
What I want to do is when the user clicks on <img>Expand/Collapse</img>, divChild will expand/collapse and that row of the GridView will also expand/collapse according to the size of its content.
View 4 Replies
Oct 27, 2010
How can I using JQuery sort any column of gridview at client side?
View 2 Replies
Mar 10, 2011
i Declare in.cs file
TextBox tb=new TextBox();
and how to get aspx when page is load
<input type="Text" runat="server"/>
using jquery json
View 2 Replies
Oct 28, 2010
how to select Tree View Client Side using jquery and Show select text and his parent Text
View 1 Replies
Nov 8, 2012
How to call asp.net method from jQuery / client side in VS 2005 ....
View 1 Replies
Mar 18, 2010
I have the following ASP.NET RadioButtonList:
[code]....
I would like to select an item in the list programmatically via a client-side jquery function like this (simplified version):
[code]....
Ideally, there is some function - in the above code I have proposed selectItemByValue - that selects an item in a RadioButtonList by a given value. Does jquery have a similar function built-in? If not, how should I go about implementing the desired functionality?
View 3 Replies
Feb 10, 2011
So I have a number of dropdown select list controls populated as part of a repeater. They might contain overlapping data, meaning that the first d d list control will have selections:
a
b
c
Second one:
c
d
e
Third one:
d
e
h
and so on.
So what I would like to do is to srart removing the duplicate items from the reset of drop down controls once the user starts selecting those. I intend to use jQuery for this.
View 2 Replies
Aug 18, 2010
I have a repeater which contains a table. I am giving the user the ability to add a new row in the repeater by adding a new row to the table. As I am very new to jQuery, can someone give sample code?
View 1 Replies
Jan 2, 2010
I'm using the ASP.NET login control and I'm displaying a jQuery throbber when the submit button is clicked. This works fine, but the throbber is visible if client side validation fails and the button is invisible, so the user cannot re-submit the form. How do I hide the throbber if client side validation fails?
View 2 Replies
Mar 3, 2011
I have a web form which does a full page postback when a button is clicked. This is caused by an update panel trigger. Client-Side: When the button is clicked, an animation gif is displayed Server-Side: When the button is clicked, the server side event changes the content type to excel, binary writes out excel content (byte array) and does Response.Flush() and Response.End() Client-Side: User is asked to either open or download the excel file. Animation gif is still displayed.
Question: How can I detect client side (using jQuery or Ajax) that the response has been completed. There is no page postback because the code-behind has cut off the response by using Response.End().
View 2 Replies
Feb 25, 2010
I am using JQuery for all of my client side validation and Asp.net validator controls for all of my server side validation. I am using an errorlabelcontainer to store the client side validations in a summary at the top of the page, which is the requirement. All works well. My problem is, I want to display the server side asp.net errors in the same errorlabelcontainer OR display all of the client side errors in the validation summary. Either way, Both errors need to be in the same place/div. Any ideas on how to do this? I thought of maybe using the asp.net validation summary as the errorcontainer in JQuery, but I cannot find the summary. This is what I have right now.
View 1 Replies
Feb 25, 2010
I am using JQuery for all of my client side validation and Asp.net validator controls for all of my server side validation. I am using an errorlabelcontainer to store the client side validations in a summary at the top of the page, which is the requirement. All works well. My problem is, I want to display the server side asp.net errors in the same errorlabelcontainer OR display all of the client side errors in the validation summary. Either way, Both errors need to be in the same place/div. Any ideas on how to do this? I thought of maybe using the asp.net validation summary as the errorcontainer in JQuery, but I cannot find the summary. This is what I have right now.
$("#aspnetForm").validate(
{
onkeyup: false,
errorLabelContainer: $("ul", $("#FormErrors")),
wrapper: "li"
});
If you need to see more code.
View 1 Replies
May 7, 2015
I am did Gridview delete and rebind data using json and jquery like this
<script type="text/javascript">
$(document).ready(function () {
$(".deleteGridRecord").click(function () {
//Get the Id of the record to delete
var record_id = $(this).attr("id");
[Code] ....
But i want to set DataKeyNames properties of grid view in above code dynamically how can do this....
View 1 Replies
May 7, 2015
How to change gridview by datalist in this example? [URL]
View 1 Replies
Jul 8, 2010
I am returning partial view
[Code]....
before begin form.
the problem is that when I click save the first time with wrong data the validation not working but it is working the second time I click save.
View 10 Replies
Apr 1, 2011
My requirement is to get the file size in client side. there is no problem in FF but in IE you can't do that unless u r using an activeX object. So we thought of putting it in browser cache and reading the file size from there and when we post it to the server we will be taking it from the cache and send it to the server.
View 4 Replies