Column widths change when launching from stateless form
Hello,
I'm not very well-versed in all this, so sorry if this question is elementary. On the upside, that should make it easy to answer!
I have a stateless form which allows a user to select a playwright from a picklist. Next to it is a button that says "View Plays" which I would like to open a View that pulls only the records for that playwright.
Here is my "on click" code:
on click
{
openUrl((((("/" + zoho.adminuser) + "/") + zoho.appname) + "/html/View_Plays/First_Playwright=") + input.Artist, "new window");
}
Where "Artist" is the playwright field in the stateless form, "First_Playwright" is the corresponding field in my plays form, and "View_Plays" is the view which normally displays ALL plays written by all playwrights.
This code half-succeeds -- it pulls the correct record -- but the report stretches off the right side of the screen rather than maintaining its proper column widths. Is there any way I can fix this? Also, is it possible to do this same thing, but with a view that's embedded within another html view?
Thanks!
Tom