Hi Ankit,
As mentioned earlier, the second link should be helpful.
Also, you may want to try following to get started. It's not a complete example though.
1. Create a jsp with a simple form, you can also do this by creating attribute panel
<input type="text" size="25px" id="EnterNumber" name="EnterNumber" value="">
<input type="text" size="25px" id="EnterName" name="EnterName" value="">
<input type="button" id="SubmitButtonID" name="SubmitButtonID" value="Search" onClick="submitFunction();">
<div id="mvcTable">
<mvc:tableContainer compId="<<YOUR COMPONENT ID>>" height="600" />
</div>
2. Include the JS
function submitFunction() {
var number = document.getElementById('EnterNumber').value;
var name = document.getElementById('EnterName').value;
var params = {
number : number,
name : name
};
//reload the table builder
PTC.jca.table.Utils.reload('<<YOUR COMPONENT ID>>',params,true);
}
3. In your builder you should be able to get the parameters as shown below
public Object buildComponentData(ComponentConfig config, ComponentParams params) throws Exception {
String PartNumber= (String) params.getParameter("number");
String PartName = (String) params.getParameter("name");
Regards,
Bhushan
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.

