Hi Saqib, there's no way to do that from configuration, but you can change the order of fields in the database. The order probably isn't guaranteed, but it works for me. First, find out the IDs of fields you want to change: SELECT * FROM metadatafieldregistry;
Then give them new IDs in the order you want: UPDATE metadatafieldregistry SET metadata_field_id=101 WHERE metadata_field_id=64; UPDATE metadatafieldregistry SET metadata_field_id=102 WHERE metadata_field_id=3; UPDATE metadatafieldregistry SET metadata_field_id=103 WHERE metadata_field_id=42; ... Regards, ~~helix84 ------------------------------------------------------------------------------ Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ _______________________________________________ DSpace-tech mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/dspace-tech

