New ZK Forum Announcement
Thanks Peter.
@PeterKuo
Is posible that the forum permits that an user could modify his user_name? If not, maybe is possible to give all the data of an existing user to a new user?
Regards Edwin.
I am missing the advanced search. Anyone knows where I can find it?
Also is there a way to track your own posts or receive email upon updates?
Thanks,
Rex
@rex
no advanced search now.
Current search use like expression of sql.
Search at most 3 separate words in title, post body, and author name.
And sort it by date.
You may search your own name to track your own posts.
receive email upon updates is the feature we prepared to provide in next phase.
Account attivation does not work in Firefox 3.5.4
Password reset does not work
In forum//changePasswordVerification.zul the messageDialog returns a "null" message appears in any case
Thanks zkTeam
@Azajob
I tried to register a new account,activate it and change password by using firefox3.5.
It works fine.
But if you register a new account, change password before activate, you may encounter problem while following activation for key changed.
We should block user from changing password before activation.
@PeterKuo
I'm triyng to debug a little, just to help.
step-by-step
- registered a new account
- received email witch activation code (not used)
at this point I can log in the forum. If try to reply I got redirected to login page
- copy&pasted activation code provided in ff 3.5.4
Wrong Verification Key!
- copy&pasted activation code provided in opera
Wrong Verification Key!
- click on the activation link (provided via the email)
zk account accepted
On my system the default browser is konqueror, email client is kmail (kde-4.3.3)
now password reset
- used the form login/forgot your password
received a new email with a new code
- copy&paste code in konqueror and opera
got a blank page: nothing but menĂ¹ and "Mail to zkadmin@zkoss.org"
- click on the url directly from the email body
got the change password form (served by konquer my default browser as said before)
- testing passwords:
4char (mona) -> password mismatch (reported in red below passwords input boxes) and error dialog "null"
10numbers (1234567890) -> same as before
8alphanumeric (zxcv1234) -> same as before
For this test i've created a test user named "assistenza" it would be very apreciated if can wil be deleted
I suggest to to negate access to users prior to account activation, maybe this action has triggered un undiscovered bug? I'll try that route if you cancel "assistenza" user.
Greatly appreciate the new layout, excellent choice!
Hi,
I am facing a problem in zkoss,
The tree component can be configured to automatically generate checkboxes, its tree items by setting its attributes.
For allowing selecting a single list item only, set checkmark="true",. For allowing the selection of multiple list items, additionally, set multiple="true".
so i m using checkbox, i need to give some functonaily to checkbox, like if we click on one module the all children all selected if not the child v click dat only select.
can u tell me how v do dis.
and how v get checkbox component.
<tree id="tree" zclass="z-dottree" multiple="true" checkmark="true"> </tree>
using multiple="true" checkmark="true" ,checkbox are created.then on zul page how v get checkbox component.
Please send me respose as soon as poosible.
With Regard's
Pardeep Garg
Hi Pardeep,
This is a section for Announcement.
Please post your questions under "Help" for further discussion, thanks.
Regards,
Wing
@puneetgarg11
Please don't cross post.
Your problem is answered at
http://www.zkoss.org/forum/listComment/14797
Please focus on that thread.
Hi,
I am creating a listbox using zul and composer.
my zul file contains
<listbox id="vendorGridId" vflex="true" selectedItem="@{vendorProfilesId$composer.selected}">
<listhead>
<listheader label="Company Name" sort="auto(companyName)" />
<listheader label="Vendor #" sort="auto(vendorNumber)" />
<listheader label="Status" sort="auto(status)" />
<listheader label="Address"/>
<listheader label="City"/>
<listheader label="State"/>
<listheader label="Zip"/>
</listhead>
</listbox>
code to draw listbox.
my composer file contains
public void doAfterCompose(org.zkoss.zk.ui.Component component) throws Exception {
super.doAfterCompose(component);
vendorGridId.setItemRenderer(new ListitemRenderer() {
@Override
public void render(Listitem item, Object data) throws Exception {
VendorProfileBean vendorProfileBean = (VendorProfileBean) data;
Listcell lc1 = new Listcell(vendorProfileBean.getCompanyName());
Listcell lc2 = new Listcell(vendorProfileBean.getVendorNumber().toString());
Listcell lc3 = null;
if(vendorProfileBean.getStatus() == 1){
lc3 = new Listcell("Active");
}else{
lc3 = new Listcell("Inactive");
}
Listcell lc4 = new Listcell(vendorProfileBean.getBillAddress1());
Listcell lc5 = new Listcell(vendorProfileBean.getBillCity());
Listcell lc6 = new Listcell(vendorProfileBean.getBillStateCode());
Listcell lc7 = new Listcell(vendorProfileBean.getBillZipCode());
lc1.setParent(item);
lc2.setParent(item);
lc3.setParent(item);
lc4.setParent(item);
lc5.setParent(item);
lc6.setParent(item);
lc7.setParent(item);
item.setAttribute("data", data);
}
});
pagingId.setPageSize(_pageSize);
refreshModel(pagingId.getActivePage(), true);
}
private void refreshModel(int activePage, boolean updateTotalSize){
PagingListModel model = (PagingListModel)vendorGridId.getListModel();
if(model == null){
model = new PagingListModel(activePage, _pageSize, this);
vendorGridId.setModel(model);
}
if (updateTotalSize) {
pagingId.setTotalSize(model.getTotalSize());
}
}
when i am clicking first time on menu to draw list box, it is drawing list with sells data . but when i am clicking on second time
on menu then it is displaying blank grid.
I debuged .I found that my vendorGridId.setItemRenderer() method as above is executing each time and setting data into cell.
When i saw in firebug on each click on menu, first time cells data is showing in firebug but not second time.
How can i resolved this issue.
Thanks
Vivek
ZK - Open Source Ajax Java Framework
@YADA
You're right. We have scheduled to make some minor modification to make forum more easily to read.
We appreciate your feedback.
We're collecting user feedback now, and make some style decision.
The next style change should be about 2 weeks later.
@Stephan
I agree with you. I'll discuss with my boss(es).
I listed it in our issue list.