Explain why these TSL functions required in WR.

1.set_record_attr(" ", "class html_name MSW_class", "regexp_MSW_class attached_text", index");

2.set_record_method(" ", RM_RECORD);

3.set_class_map("html_table"," ");

Showing Answers 1 - 2 of 2 Answers

Rbabu

  • Mar 7th, 2007
 


Hi,


Anybody can explain these functions please

1.set_record_attr("html_frame", "class html_name MSW_class", "html_id frame_id", "index");
2.set_class_map("html_table", "object");
3.set_record_method("html_table", RM_RECORD);

  Was this answer useful?  Yes

choti

  • Mar 16th, 2007
 

Some objects WR recognizes as generic object. Adding custom properties for objects allows to manage them as concrete objects with by their properties: # add new object html_table to GUI map Configurationset_class_map("html_table", "object"); # define custom html_table class as specialized object# define its mandatory, optional properties and identification methodset_record_attr("html_table", "class html_name", "attached_text MSW_id MSW_class", "location"); set_record_method("html_table", RM_RECORD); # and recording method (context sensitive)# add attributes to html_radio_button objectset_record_attr("html_radio_button", "class MSW_class html_name", "", "location");

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions