
Đã đóng
Đã đăng vào
I have an Oracle APEX application with an Interactive Grid that needs a proper Tree View. The underlying query already returns hierarchical data; what is missing is the front-end logic that renders those rows as expandable and collapsible nodes directly inside the grid. Essential behaviour • Each parent row must display a toggle so users can expand or collapse its child rows without reloading the page. • Performance has to remain smooth with a few thousand rows. Server-side pagination is already enabled—your code should respect it. Tech environment APEX 23.1 on Oracle 19c. Dynamic actions, JavaScript, and the built-in APEX widget APIs are all available. No plug-ins have been installed yet, but I am open to a lightweight one if it meets the requirement and stays upgrade-safe. Deliverables 1. Working Tree View inside the existing Interactive Grid in my development workspace. 2. Reusable JavaScript/PL-SQL package or dynamic action code with comments. 3. Short step-by-step note so I can replicate the setup in another environment. The core need is the expand/collapse behaviour; drag-and-drop or inline editing can stay out of scope for now, though the solution should not block those features should we add them later. Access to the workspace, sample data, and a read-only table script will be provided right after award.
Mã dự án: 40231832
13 đề xuất
Dự án từ xa
Hoạt động 25 ngày trước
Thiết lập ngân sách và thời gian
Nhận thanh toán cho công việc
Phác thảo đề xuất của bạn
Miễn phí đăng ký và cháo giá cho công việc
13 freelancer chào giá trung bình ₹1.027 INR/giờ cho công việc này

Your Interactive Grid will fail the moment users try to expand 500+ child rows at once because APEX's native pagination wasn't designed to handle hierarchical state management. Without proper client-side caching and lazy loading, you'll see 3-5 second delays on every toggle. Before I architect the solution, I need clarity on two things: What's your typical parent-to-child ratio - are we talking 50 parents with 20 children each, or 500 parents with 5 children? And does your hierarchical query use CONNECT BY or a recursive CTE, because that affects how we'll handle the LEVEL pseudo-column for indentation? Here's the architectural approach: - JAVASCRIPT WIDGET API: Hook into the Interactive Grid's model events to intercept row rendering and inject expand/collapse icons based on the HAS_CHILDREN flag from your query. This keeps pagination intact while adding tree behavior. - CLIENT-SIDE STATE MANAGEMENT: Store expanded node IDs in session storage so the tree state persists across pagination and page refreshes without hitting the database. - LAZY LOADING PATTERN: Only fetch child rows when a parent is expanded using an AJAX callback to a PL/SQL process. This prevents the initial query from returning 3,000 rows when users only need to see 50 top-level parents. - CSS INDENTATION: Use dynamic padding-left based on the LEVEL column to create visual hierarchy without modifying the grid's DOM structure, which keeps APEX's native features like sorting and filtering functional. I've built similar tree grids for 4 APEX clients handling 10K+ hierarchical records. The solution I'll deliver uses zero third-party plugins - just native APEX 23.1 APIs and vanilla JavaScript that won't break during upgrades. Let's schedule a 15-minute call to review your query structure and confirm the performance targets before I start development.
₹900 INR trong 30 ngày
6,9
6,9

Here’s a **short, meaningful, and professional proposal** you can use: --- Hi, I’m an experienced **Oracle APEX (22.2) developer** with strong expertise in Interactive Grid customization, JavaScript, and APEX widget APIs. I understand that your query already returns hierarchical data and the main requirement is to implement **expand/collapse Tree View behavior directly inside the Interactive Grid** while preserving server-side pagination and performance for large datasets. I can: * Implement clean and upgrade-safe front-end logic using APEX 23.1 native APIs * Add expandable/collapsible parent-child behavior without page reload * Ensure smooth performance with thousands of rows * Deliver reusable, well-commented JavaScript/PLSQL code * Provide a clear step-by-step setup guide for replication The solution will not block future enhancements like drag-and-drop or inline editing. I’m ready to start immediately once workspace access is provided. Best regards, Ali Arslan Oracle APEX Developer
₹1.000 INR trong 40 ngày
4,3
4,3

Dear Client, with over 15 years of professional experience in web development, I am confident in delivering a high-quality, scalable, and user-focused website tailored to your business needs. I specialize in PHP, WordPress, Python, Laravel, CodeIgniter, and Django, enabling me to build secure, responsive, and performance-optimized web solutions with clean UI/UX and SEO best practices. I am ready to start immediately and am committed to providing 24×7 support, clear communication, and timely delivery to ensure complete client satisfaction and long-term project success.
₹1.000 INR trong 40 ngày
3,6
3,6

I can implement a robust Tree View inside your existing Oracle APEX Interactive Grid that respects hierarchical data and enables smooth expand/collapse functionality. Using APEX 23.1’s Dynamic Actions, JavaScript, and built-in widget APIs, I will create a performant, upgrade-safe solution that works seamlessly with your server-side pagination for thousands of rows. Key features: Parent rows with toggles to expand/collapse child rows without page reload. Optimized JavaScript logic to maintain smooth performance even with large datasets. Reusable and well-commented code—either a JS/Dynamic Action setup or a lightweight PL/SQL package. Deliverables include: Fully working Tree View integrated in your Interactive Grid. Reusable code with clear comments for future modifications or deployment in other environments. Step-by-step guide so you can replicate the setup in other workspaces. I have experience building custom interactive grids and hierarchical views in APEX with clean, maintainable code and strong performance. Once you provide workspace access, sample data, and table scripts, I can deliver a working prototype quickly and ensure it’s fully ready for your development and production environments.
₹750 INR trong 40 ngày
3,4
3,4

With over a decade of experience as a Full Stack Developer and Technical Lead, I am confident in my ability to not only deliver quality code, but also to offer strategic, thoughtful solutions to your project needs. I have extensive knowledge working with JavaScript, which will be instrumental in implementing the expand/collapse functionality necessary for your Oracle APEX application. Importantly, I am familiar with the APEX widget APIs and can expertly navigate the tech environment you described. Moreover, I understand that performance is a top concern for you, even with potentially thousands of rows. I have successfully addressed similar challenges in the past using server-side pagination and ensuring smooth performance; these techniques will continue to uphold efficiency in your system. Efficiency aside, creating clean architecture and solutions that prioritize long-term maintainability are hallmarks of my work - so you can expect your project to be robust against future upgrades if we choose to include any lightweight plugins. In conclusion, by selecting me for this project, you'll get someone who does more than just complete tasks; you'll have a partner committed to delivering reliable, scalable solutions that meet your current and anticipated needs. My resume includes building products from idea to production; this experience has honed my understanding of the intricacies businesses face.
₹1.000 INR trong 40 ngày
2,5
2,5

Hello Dear Respected Client, I am Professional Oracle SQL, PLSQL, Forms, Reports, Oracle Apex Programmer. I believe that In Shaa ALLAH I will do your required work. Please contact me for this project. Regards, Muhammad Shoaib
₹1.500 INR trong 15 ngày
2,7
2,7

Hi, i can build this for you, the task seems pretty straightforward since the underlying query already returns the data in the appropriate structure the remaining work is just in figuring out how to properly render it in a tree view in the frontend which shouldn' be much of an issue. I an confident that i can do this in under 5 hours
₹1.000 INR trong 5 ngày
1,4
1,4

Hi! I can implement an upgrade-safe Tree View experience directly inside your existing Oracle APEX Interactive Grid (APEX 23.1 / Oracle 19c) using native IG APIs, Dynamic Actions, and clean JavaScript (no heavy plugins). What I will do: Add an expand/collapse toggle on parent rows. Implement client-side show/hide of child rows without page reload. Keep performance smooth with a few thousand rows by minimizing DOM work, using event delegation, and leveraging the IG model (no full re-render loops). Respect existing server-side pagination: the logic will operate only on the currently fetched page and handle re-application after refresh/pagination. Deliverables: Working expandable/collapsible hierarchy inside your Interactive Grid in your dev workspace. Reusable implementation (JavaScript + Dynamic Action configuration, and optional small PL/SQL helper if needed) with clear comments. Short step-by-step replication notes for another environment. Notes: I will keep the solution compatible with future enhancements (inline editing, drag-and-drop later), and avoid approaches that block IG features. If your query already returns parent/child identifiers and level/order, that’s perfect; I’ll map that into a stable toggle state per row. Availability: ready to start immediately after you provide workspace access and the sample data/table script.
₹1.200 INR trong 15 ngày
0,8
0,8

With years of experience in Oracle APEX and a core focus on JavaScript, I am undoubtedly the professional you need for your Oracle APEX Interactive Grid Tree project. Having worked on numerous similar projects in the past, I have gained indispensable skills and knowledge that will deliver precisely what your project demands: expanding/collapsing parent rows within an Interactive Grid without reloading the page. To ensure ultimate efficiency and a smooth user experience, I am adept at utilizing dynamic actions, JavaScript, and the built-in APEX widget APIs, exactly what your tech environment demands. Moreover, my understanding of server-side pagination will guarantee optimal performance even when dealing with large volumes of data. My intention is to create invaluable code that is both upgrade-safe and reusable for other potential environments. Choosing us for your project ensures access to diverse expertise alongside my specialized skillset in Oracle APEX and Javascript. Rest assured, our services go beyond just development but include real-time support post-delivery as well. Let's collaborate to implement a tree view that meets all specifications while allowing flexibility for future additions like drag-and-drop or inline editing. Let
₹1.000 INR trong 40 ngày
0,0
0,0

Hello, I have solid experience working with Oracle APEX (including 23.x) and building advanced Interactive Grid customizations using JavaScript and the APEX widget APIs. Since your underlying query already returns hierarchical data, the main task is correctly rendering that structure within the Interactive Grid while preserving pagination and performance,which is absolutely achievable. Here’s how I would approach this: • Use the existing hierarchical query (CONNECT BY or recursive WITH) • Extend the Interactive Grid using APEX region JS initialization code • Inject expandable/collapsible toggles dynamically • Ensure server-side pagination is respected • Maintain smooth performance with large datasets • Keep the solution upgrade-safe and plugin-free unless truly necessary I will deliver: A fully working Tree View behavior embedded inside your current Interactive Grid. Clean, reusable JavaScript and optional PL/SQL helper package with clear comments. Step-by-step documentation so you can replicate it in other environments. The implementation will: Not require page reloads Respect existing pagination Remain compatible with future drag-and-drop or inline editing Stay aligned with APEX 23 best practices I’ve previously worked with hierarchical queries, grid customizations, dynamic actions, and role-based logic in APEX, so this is a focused front-end rendering enhancement rather than a structural rebuild. Regards, Darren
₹1.000 INR trong 10 ngày
0,0
0,0

Skilled in apex development , already developed crm in apex. including interactive grid as well, let us connect to kick off this project
₹1.000 INR trong 40 ngày
0,0
0,0

Nagpur, India
Phương thức thanh toán đã xác thực
Thành viên từ thg 1 24, 2019
₹400-750 INR/ giờ
₹1500-12500 INR
₹1500-12500 INR
₹1500-12500 INR
₹1500-12500 INR
$30-250 SGD
$3000-5000 USD
$250-750 CAD
$15-25 USD/ giờ
$3000-5000 USD
₹600-1500 INR
$10-30 USD
$30-250 USD
$250-750 USD
$3000-5000 USD
$250-750 USD
₹12500-37500 INR
$10-30 USD
$100 USD
₹1500-12500 INR
₹12500-37500 INR
$10-30 USD
$10-30 USD
£250-750 GBP
$30-250 USD