Hopefully you wont take this as a "Please send me the codez" type post though I'm sure it's going to kind of look like one.
It's a simple application. Search for and select a patient. Show a bunch of bits of information about that patient. On a couple of the tabs show the many events that have happened to those patients. Operations for example.
I was given a skeleton of an application to work with that didn't have much on it besides some basic HTML data controls, a Telerik tab control with paging.
What I'd like help with is the big picture basic architecture of how to put that together using Telerik controls.
I'm using the Entity Framework for the Data Layer and I have that connected to the Operations grid in code.
Like this:
So I fill up a combo box, pick the patient SSN from that combo box, populate all the HTML controls vie code and then filter and bind the grid for showing operations. All that is working (for read) but I think there has to be a better way.
Something like a parent control for the operations Grid that I can put all the HTML controls in. You know, like a Parent-Child grid relationship where the parent shows only one record that I can bind to a datasource.
Thanks,
MArk (Plz send hte codez) B.
It's a simple application. Search for and select a patient. Show a bunch of bits of information about that patient. On a couple of the tabs show the many events that have happened to those patients. Operations for example.
I was given a skeleton of an application to work with that didn't have much on it besides some basic HTML data controls, a Telerik tab control with paging.
What I'd like help with is the big picture basic architecture of how to put that together using Telerik controls.
I'm using the Entity Framework for the Data Layer and I have that connected to the Operations grid in code.
Like this:
this.EntityDataSource2.WhereParameters.Clear();
this.EntityDataSource2.AutoGenerateWhereClause = true;
this.EntityDataSource2.WhereParameters.Add("PATIENT_ID", TypeCode.Int32, ddlSearchSSN.SelectedValue);
this.gridOperations.DataSource = EntityDataSource2;
this.gridOperations.DataBind();
So I fill up a combo box, pick the patient SSN from that combo box, populate all the HTML controls vie code and then filter and bind the grid for showing operations. All that is working (for read) but I think there has to be a better way.
Something like a parent control for the operations Grid that I can put all the HTML controls in. You know, like a Parent-Child grid relationship where the parent shows only one record that I can bind to a datasource.
Thanks,
MArk (Plz send hte codez) B.