Archives

Archive for the ‘Metastorm 9 Designer’ Category

Tweet thisThe setup is, you have a form with a non-editable grid and fields to collect the data to be entered into the grid.
Grid Name: GridTest
Business Object: TestGrid
Button to Add Record: “Add” – Server side button with Code Activity
Code Activity:
System.Data.DataSet ds = TestGrid.Read();
System.Data.DataRow dr = ds.Tables[0].NewRow();
 dr["FIRST_COLUMN"] = “FIRST COLUMN DATA”;
 dr["SECOND_COLUMN"] = “SECOND COLUMN DATA”;
 ds.Tables[0].Rows.Add(dr);
//write changes [...]

Apr 23rd, 2010 | Filed under Metastorm 9, Metastorm 9 Designer

Tweet thisAfter looking through the source code (html) of a metastorm 9 form with a grid, it appears that Metastorm has purchased RadGrid component from Telerik.  I’ve looked around the API and it seems that they are using Ajax and JQuery. I am still investigating ways of making JQuery calls through client scripting. I’m not [...]

Apr 22nd, 2010 | Filed under Metastorm 9, Metastorm 9 Designer

Tweet thisMetastorm has come a long way with the recent release of Metastorm 9. Although Metastorm 9 is powerful and very flexible, there are times when extra customization is in need. For this, Metastorm has an SDK (software development kit).
It seems that Metastorm will release their SDK for Metastorm 9 with SR1. This is tentative [...]

Feb 4th, 2010 | Filed under Metastorm 9, Metastorm 9 Designer