I have a small problem here, I was wondering how could it be possible to achieve this. Since the UI in this project is really top notch, I would really like to know what is the best practice here, rather than using tons of Ajax calls.
I would need to load categories (as custom field I understand) into the other dropdown combobox that will be repopulated depending on the group that was chosen.
I hope you got the point, was wondering what can you suggest I should do in this situation.
First off I would like to load the list of groups and be able navigate to it.
As easiest solution that I am working on is creating a Combobox, and read the value selected and include it into the url.
Is there any other less javascript dependent approach I could/should go with?
function viewGroup() {
var fullurl=window.location.search
var param=(fullurl.slice(1));
var pairs = param.split("&")
var targetvar = "GroupID";
alert(pairs[0]);
for(var i = 0; i < pairs.length; i++)
{
var pos = pairs[i].indexOf('=')
if (pos == -1) continue
var argname = pairs[i].substring(0,pos)
var value = pairs[i].substring(pos+1)
etc...
}
}
Maybe I should go with some custom module controll?
-Dmitrij
