Adding dynamic entry based on click event

Use below code snippet to add dynamic text box whenever a label is clicked.
static void ad_new_contact(void *data, Evas_Object *obj, void *event_info)
{
	appdata_s *ad = data;

	Evas_Object *entry = elm_entry_add(ad->box);
	elm_entry_single_line_set(entry, EINA_TRUE);
	elm_entry_entry_insert(entry, "New Entry");
	elm_object_part_text_set(entry, "elm.guide", "Input Text");
	evas_object_show(entry);
	elm_box_pack_before(ad->box, entry, ad->show);

}

*Use callback function as below */
ad->show = elm_label_add(ad->box);
elm_object_text_set(ad->show, "<align=center>Create New Contact</align>");
evas_object_smart_callback_add(ad->show, "clicked", ad_new_contact, ad);
evas_object_show(ad->show);
elm_box_pack_end(ad->box, ad->show);

Responses

0 Replies