Can someone please provide me with a sample demonstrating how to bind to a WebDataGrid client side NOT using a datasource like in the samples browser? I would like to make a web service call using JSON and bind the data client side, but the only example I can find is the one in the samples browser connecting to a database.
Hi Shyam,
I don't work for Infragistics but would like to try helping you out, at the same time fixing my own issue. I might have the time during the backend of this week but from what I can see in your code example all looks good. Are you seeing blank rows of data or not rows at all?
This is what I tried so it might help you. It DOES NOT use dataGrid._applyClientBinding(); because jQuery would always through that same error to are seeing. But this returns blank rows for me.<%@ Register Assembly="Infragistics35.Web.v10.3, Version=10.3.20103.2120, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" namespace="Infragistics.Web.UI.GridControls" tagprefix="ig" %>
<
script type="text/javascript" src="JSON/json2.js"></script><script type="text/javascript" src="Scripts/jquery-1.4.3.js"></script><script type="text/javascript" src="Scripts/jquery.tmpl.js"></script>
function onSuccessOfGetAccountHistory(result) { var dialog = $find("WebDialogWindowShowDetails"); var dataGrid = $find("WebDialogWindowShowDetails_tmpl_WebDataGridShowDetails"); //create a datasource var dataSource = dataGrid._get_dataSource(); var newData = eval(result); //Empty the grid $(dataGrid._elements.dataTbl.lastChild).empty();
//Populate the dataGrid dataGrid._pi.show(dataGrid);
for (var i = 0; i < newData.length; i++) { //dataSource.push(newData[i]); $(dataGrid.tableTemplate).data(newData[i]).appendTo(dataGrid._elements.dataTbl.lastChild); } dataGrid._pi.hide(dataGrid);
//Show the results dialog.set_windowState($IG.DialogWindowState.Normal); }
Let me know if this helps at all...Dave
Hi DaveI am using .NET 4.0, Infragistics4.Web.v10.3, Version=10.3.20103.2105 and I am working in MVC.
I have a webdropdown on change of webdropdown on clientside (<ClientEvents SelectionChanged="wcProject_SelectionChanged" />) I am able to fetch data using JSON , JSONResult, now I want to bind that data to Webdatagrid like -
//to bind webdatagrid var myGrid = $find('<%=grdProjectDirectory.ClientID %>'); //document.getElementById(''); var dataSource = myGrid._get_dataSource(); var arr = this.Inbox[0].lstProject; if (!myGrid.tableTemplate) myGrid.tableTemplate = myGrid._elements.dataTbl.lastChild.cloneNode(true); for (var i = 0; i < arr.length; i++) { dataSource.push(this.Inbox[0].lstProject[i]); } $(myGrid._elements.dataTbl.lastChild).empty(); myGrid._set_dataSource(dataSource); myGrid._pi.show(myGrid); myGrid._applyClientBinding(); myGrid._pi.hide(myGrid);
Here on _applyClientBinding(); getting an error Object does not support this property or method
<script src="../../Scripts/jquery-1.6.1.js" type="text/javascript"></script>
<script src="../../Scripts/jquery.tmpl.js" type="text/javascript"></script> <script src="../../Scripts/jquery.tmpl.min.js" type="text/javascript"></script> <script src="../../Scripts/jquery.tmplPlus.js" type="text/javascript"></script> <script src="../../Scripts/jquery.tmplPlus.min.js" type="text/javascript"></script>
Suggest me where I am wrong.
Regards
Shyam
Hey Shyam,
Will and I talked about a solution a few weeks ago but lost contact for a bit due to working so damned much. Nevertheless, I can tell that Will got his solution working in .NET 4.0, but I was not able to get it working in .NET 3.5 as I don't think this feature is supported in that version. I need to reconnect with Will to see if his solution will work for me.
In the mean time can you fill me in on your specific situation? Like .NET version and Service Type, such as Web Service or WCF etc.
ThanksDave
Hi DaveI am also getting same type of issue on ._applyClientBinding()
Did you get any solution, if yes plz suggest how to resolve this
Hey Dave,
I came up with a solution using jquery templates. I can not use postbacks due to the site requirements.
If interested, please feel free to email me at Dave@TEUConsulting.com ,
Will