Why is this the case? I was using simple text queries and it worked well. When I turned those queries in stored procedures, it does the job, but listviews and gridviews dont update/refresh automaticly.
Help please.
...
Im working on the following markup, inside a databound control in ASP.NET Webforms.
<asp:TemplateField HeaderText="DomainID">
<ItemTemplate>
<% for (int i = 0; i < 10; i++)
{%>
<%#Eval("DomainID"); %>
<% ++i;
} ...
First let me warn readers not to pass me off to any links in isomorphic because it is highly probable I have read it and I have scoured the smartgwt showcase running locally here as I ask this question. What I ask is not documented and if it is, I am unable to decipher and need actual explanation here. No, do not tell me about SmartGWT E...
Hello everybody!
I know the question has already been posted here but we didn't get to an real solution.
I have bound my ListView to an SqlDataSource and I want to write some text in a control present in the view created in the LayoutTemplate depending on some properties of the rows returned.
Obviously, I'm using the ItemDataBound eve...