iSeller Commerce
iSeller POS Retail
iSeller POS F&B
iSeller POS Express
Crosslight
WebUI
ClientUI
What's New
Download Trial
Web Solution
Mobile Solution
Enterprise Solution
Custom Development
Blog
Community
Latest Development Blogs
ForumPostTopic
Browse By Tag
I am so sad to hear that!I think I will use "alert()" usually.But when I use HtmlButton,it display normal on fireFox.
<input id="Button1" type="button" onclick="myalert()" value="htmlBtn" /> function myalert() { alert(1); }
I am sorry,although it has achieved Total=count*Unitprice ,Total 's footerText has not changed when I change "count column" or "Unitprice column".Anyway,when I change "count column" or "Unitprice column".I want to get the newest Total 's footerTextCan you give me one solution? thank you
var grid = ISGetObject("WebGrid1");var rowCount=grid.RootTable.GetRowsCount()//grid.TotalRowswindow.alert(rowCount);
hi,Niven Prasetya.is there any news about this bug?
thank you .Yudi .
you are right!
Would you please tell me that your next webui version has solve the problem?
<LayoutSettings AutoFitColumns="true">
<ISWebGrid:WebGrid ID="WebGrid1" DataCacheStorage="PageCache" DefaultStyleMode="Win7" runat="server" Height="148px" UseDefaultStyle="True" Width="329px" oninitializedatasource="WebGrid1_InitializeDataSource" onpreparedatabinding="WebGrid1_PrepareDataBinding" onaddrow="WebGrid1_AddRow" ondeleterow="WebGrid1_DeleteRow" onupdaterow="WebGrid1_UpdateRow" oninitializepostback="WebGrid1_InitializePostBack" > <LayoutSettings NewRowLostFocusAction="AlwaysUpdate" AllowEdit="Yes" AllowDelete="Yes" PagingMode="VirtualLoad" VirtualPageSize="13"> <ClientSideEvents OnEditKeyDown="WebGrid1_OnEditKeyDown" /> </LayoutSettings> </ISWebGrid:WebGrid>
public partial class insertRowToSql : System.Web.UI.Page{ string sqlcon = System.Configuration.ConfigurationManager.ConnectionStrings["loginConnectionString2"].ToString(); SqlConnection conn; SqlDataAdapter da; DataSet sqlds; SqlCommandBuilder builder; protected void Page_Load(object sender, EventArgs e) { Cache["temp"] = "false"; conn= new SqlConnection(sqlcon); da = new SqlDataAdapter("SELECT id ,name ,pwd FROM logintbl;", conn); builder= new SqlCommandBuilder(da); }protected void WebGrid1_PrepareDataBinding(object sender, ISNet.WebUI.WebGrid. DataSourceEventArgs e) { WebGrid1.RootTable.DataKeyField = "id"; //set primary key WebGrid1.RetrieveStructure(); WebGrid1.RootTable.DataKeyField = "id"; } //insert protected void WebGrid1_AddRow(object sender, RowEventArgs e){DataSet ds = (DataSet)WebGrid1.DataSource; da.InsertCommand = builder.GetInsertCommand(); da.Update(ds); e.ReturnValue = false; WebGrid1.ClientAction.Refresh(); } //update protected void WebGrid1_UpdateRow(object sender, RowEventArgs e) { DataSet dt = (DataSet)WebGrid1.GetCachedDataSource(); DataSet changeDT = (DataSet)dt.GetChanges(); da.UpdateCommand = builder.GetUpdateCommand(); da.Update(changeDT); e.ReturnValue = false; } //deleteprotected void WebGrid1_DeleteRow(object sender, RowEventArgs e) { DataSet ds = (DataSet)WebGrid1.DataSource; da.DeleteCommand = builder.GetDeleteCommand(); ((DataRowView)e.Row.DataRow).Row.Delete(); da.Update(ds); e.ReturnValue = false; WebGrid1.ClientAction.Refresh(); }
It doen not matter.Niven PrasetyaWish your developer solve it as soon as possible.we really need it.
or
Choose this if you're already a member of Intersoft Community Forum. You can link your OpenID account to your existing Intersoft Social ID.
Choose this if you don't have an Intersoft account yet. Your authenticated OpenID will be automatically linked to your new Intersoft account.
Enter your Wordpress Blogname